.brand-name {
  font-weight: bold;
  color: #162430 ; 
  font-size: 24px;
  line-height: 50px;
  vertical-align: middle;
}

.navbar-brand {
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    margin-right: 10px;
  }

.navbar-nav .nav-link {
  font-size: 18px; /* Ukuran teks di menu */
}

.navbar-brand img {
  margin-right: 10px; /* Spasi antara logo dan teks */
}

.navbar-nav .nav-link.active {
    background-color:#3499D5    ; /* Biru */
    color: white;
    border-radius: 5px;
    padding: 8px 16px;
  }
  
  .navbar-nav .nav-link {
    color: #162430    ; /* Warna link default */
  }
  
  .navbar-nav .nav-link:hover {
    color:#162430;    /* Warna link saat hover */
    background-color:#60baee ;
    border-radius: 5px;
  }
  
  .navbar-nav .nav-item {
    margin-left: 15px; /* Jarak antara menu di sebelah kiri */
  }
  #carousel {
    position: relative;
  }
  
/* Carousel Description */
.carousel-description {
    position: absolute;
    top: 0; /* Letakkan di bagian atas carousel */
    left: 0; /* Tetap di tepi kiri container */
    width: 100%; /* Lebar background sesuai dengan container */
    height: 100%; /* Tinggi background sesuai dengan tinggi carousel */
    color: #fff;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 20px; /* Sesuaikan padding jika diperlukan */
    display: flex; /* Agar teks bisa diatur vertikal di tengah */
    align-items: center; /* Vertikal align di tengah */
    z-index: 10;
    max-width: 50%;
  }
  
  
  #carousel img {
    height: 500px; /* Sesuaikan tinggi gambar slide */
    object-fit: cover; /* Agar gambar tidak terdistorsi */
  }

/* Styling buat gambar di carousel */
#carousel img {
    border-top: 5px solid #1f5a7d ; /* Kasih bingkai di bagian atas aja */
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2); /* Bayangan di bawah bingkai atas */
  }
  
  /* Styling buat Welcome Section */
.welcome-section {
    padding: 50px 0;
    background-color: #f8f9fa; /* Warna background abu-abu muda */
  }
  
  .welcome-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color:#162430; /* Warna teks hitam */
    margin-bottom: 5px;
  }
  
  .welcome-section p {
    font-size: 1.25rem;
    color:#162430; /* Warna teks abu-abu tua */
    line-height: 1.7;
  }
  
  .welcome-section h2 {
    font-size: 2rem; /* Ukuran lebih kecil dari H1 */
    font-weight: 600;
    color: #162430; /* Warna teks abu-abu tua */
    margin-bottom: 5px;
  }









  .container-section{
    margin: 10%;
  }

  .container-section h1{
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 5rem;
    margin-bottom: 3rem;
    font-size: 2rem;
  }

  .container-section .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1.5fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1.5fr));
  gap: 2rem;
  }

  .container-section .box-container .box{
    text-align: center;
    background: #ffffff;
    border: 1px solid #334;
    border-radius: 10px;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
  }

  .container-section .box-container .box img {
    height: 20rem;
    margin-bottom: 1rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }

  .container-section .box-container .box h3{
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: bold;

  }

  .container-section .box-container .box a{
    background: #ffffff;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    padding: 1rem;
    line-height: 50px;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #2597f4;
    color: #2597f4;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);


  }

  .container-section .box-container .box a:hover{
    background: #2597f4;
    color: #fff;
    font-weight: bold;
    
  }





  .footer{
    margin-top: 20rem;
  }





  @media (min-width: 992px) {
    .col-lg-2 {
        max-width: 10%; /* Maksimal 10 logo per baris pada layar besar */
    }
}

@media (max-width: 991px) {
    .col-md-3 {
        flex: 0 0 20%; /* Atur ukuran logo di layar medium */
    }
}

@media (max-width: 767px) {
    .col-6 {
        flex: 0 0 50%; /* Atur ukuran logo di layar kecil */
    }
}

/*footer*/

.footer {
    background-color: #000; /* Warna hitam */
    color: #fff; /* Teks putih */
}

.footer-logo img {
    max-width: 150px; /* Ukuran maksimal logo footer */
}

.footer a {
    color: #fff; /* Warna link putih */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}